math/big.nat.setUint64 (method)
14 uses
math/big (current package)
float.go#L521: z.mant = z.mant.setUint64(x << uint(s))
float.go#L572: z.mant = z.mant.setUint64(1<<63 | math.Float64bits(fmant)<<11)
float.go#L1164: t := z.b.abs.setUint64(1)
int.go#L65: z.abs = z.abs.setUint64(uint64(x))
int.go#L72: z.abs = z.abs.setUint64(x)
nat.go#L84: func (z nat) setUint64(x uint64) nat {
nat.go#L626: return z.setUint64(0)
nat.go#L628: return z.setUint64(1)
nat.go#L630: return z.setUint64(a)
nat.go#L632: return z.mul(nat(nil).setUint64(a), nat(nil).setUint64(b))
nat.go#L1380: z1 = z1.setUint64(1)
rat.go#L328: z.b.abs = z.b.abs.setUint64(uint64(b))
ratconv.go#L349: p = nat(nil).expNN(natTen, nat(nil).setUint64(uint64(prec)), nil, false)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |